home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / qdeck / help / wcle < prev   
Encoding:
Text File  |  1994-08-11  |  766 b   |  40 lines

  1. #
  2. # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GX extender.
  3. #
  4.  
  5. CFLAGS =  -DMSDOS
  6.  
  7. all: helpcall.exe ~\help\example.hlp
  8.  
  9. helpcall.exe:    wcle.tag link.rsp helpcall.obj
  10.     xglu E(helpcall.exe) @link.rsp
  11.  
  12. helpcall.obj: helpcall.c
  13.     wcc386 $(CFLAGS) helpcall.c
  14.  
  15. wcle.tag:
  16.     del *.tag
  17.     del *.obj
  18.     del *.map
  19.     del *.exp
  20.     del *.exe
  21.     del *.rsp
  22.     echo >wcle.tag
  23.  
  24. link.rsp: wcle
  25.     echo helpcall.obj      >  link.rsp
  26.     echo sys.lib           >> link.rsp
  27.     echo -format lin       >> link.rsp
  28.     echo -heapsize 1       >> link.rsp
  29.     echo -stack 30000      >> link.rsp
  30.     echo -noignore         >> link.rsp
  31.     echo -dosseg           >> link.rsp
  32.  
  33. ~\help\example.hlp:
  34.     cd .\example
  35.     helplib @example.rsp
  36.     copy example.hlp ~\help\.
  37.     del example.hlp
  38.     cd ..
  39.  
  40.